home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Environments / Clean 1.2.4 / IO Examples / Scrabble / Macintosh / systemsettings.dcl next >
Encoding:
Modula Definition  |  1997-05-13  |  425 b   |  24 lines  |  [TEXT/3PRM]

  1. definition module systemsettings
  2.  
  3.  
  4. import    StdTuple
  5. import    deltaFont, deltaPicture
  6.  
  7.  
  8. /*    This module contains macro's to make the scrabble application platform customisable.
  9. */
  10.  
  11.  
  12. //    For graphics:
  13.  
  14. //    Font information:
  15.  
  16. font size            :==    snd (SelectFont "Times" [] size)
  17. letterfont            :== snd (SelectFont "Times" ["Bold"] 10)
  18. smallfont            :== snd (SelectFont "Helvetica" [] 6)
  19.  
  20. //    Background colour:
  21.  
  22. rbBackground        :==    WhiteColour
  23.  
  24.